home *** CD-ROM | disk | FTP | other *** search
- Path: news.accent.net!news
- From: dallaire@megatoon.com (Guy Dallaire)
- Newsgroups: comp.lang.c,comp.lang.c++,comp.unix.programmer
- Subject: Re: itoa() in C for unix >>>
- Date: Thu, 18 Apr 1996 01:05:09 GMT
- Organization: Accent Internet
- Message-ID: <4l44mv$g0a@news.accent.net>
- References: <1996Apr12.121207@topaz>
- NNTP-Posting-Host: 205.205.31.94
- X-Newsreader: Forte Free Agent 1.0.82
-
- naderr@topaz.cqu.edu.au wrote:
-
- >Hi,
-
- >Does anyone have or know of where I may obtain a itoa()
-
- If you really can't find it, use sprintf instead...
-
- Ex.: sprintf(szString, "%d", iValue);
-
- This will place the string version of iValue into szString. You can
- use all of printf's flags too.
-
- Hope this helps
- Guy Dallaire
- Groupe DMR Inc.
- dallaire@megatoon.com
-
- P.S. My opinions are my own and do not reflect those of my employer
-
-